This repository has no description
semble
/
src
/
webapp
/
app
/
(dashboard)
/
profile
/
[handle]
/
(withHeader)
/
collections
/
page.tsx
319 B
11 lines
1import CollectionsContainer from '@/features/collections/containers/collectionsContainer/CollectionsContainer';
2
3interface Props {
4 params: Promise<{ handle: string }>;
5}
6
7export default async function Page(props: Props) {
8 const { handle } = await props.params;
9
10 return <CollectionsContainer handle={handle} />;
11}